home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gcc / ixemlsrc.lha / ixemul / ixnet / create_header.c < prev    next >
C/C++ Source or Header  |  1996-03-13  |  364b  |  13 lines

  1. #define KERNEL
  2. #include "ixnet.h"
  3. #include <stddef.h>
  4. #include <stdio.h>
  5.  
  6. int main(int argc, char **argv)
  7. {
  8.   printf ("/* This header has been generated by the create_header tool.\n   DO NOT EDIT! */\n\n");
  9.  
  10.   printf ("#define IXNETBASE_SIZEOF (IXNETBASE_C_PRIVATE + %d)\n",
  11.       (int)(sizeof (struct ixnet_base) - offsetof (struct ixnet_base, ix_seg_list) - 4));
  12. }
  13.